home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / sgml / msdos / sgml07 / appl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-25  |  707 b   |  36 lines

  1. /* appl.h */
  2.  
  3. #define DELCDATA '\035'   /* Delimiters: CDATA entity in att value. */
  4. #define DELSDATA '\036'   /* Delimiters: SDATA entity in att value. */
  5. #define DELNONCH '\037'   /* Prefix: non-SGML character. */
  6. #define ADDNONCH 64       /* Addend: added to non-SGML char (mod 256). */
  7.  
  8. enum {
  9.      E_NOMEM = 1,
  10.      E_DOC,
  11.      E_EXEC,
  12.      E_FORK,
  13.      E_WAIT,
  14.      E_SIGNAL,
  15.      E_OPEN,
  16.      E_CAPBOTCH
  17. };
  18.  
  19. VOID process_document P((void));
  20.  
  21. UNIV xmalloc P((UNS));
  22. VOID appl_error VP((int, ...));
  23.  
  24. #ifdef SUPPORT_SUBDOC
  25. int run_process P((char **));
  26. char **make_argv P((UNIV));
  27. VOID get_subcaps P((void));
  28. #endif
  29.  
  30. #ifdef SUPPORT_SUBDOC
  31. extern int suberr;
  32. #endif
  33.  
  34. extern int suppsw;
  35. extern int locsw;
  36.